Attributes inside of tags

HTML - Hypertext Markup Language

Created: 2022-09-10
Tags: #fleeting


Attributes are optionally added in the opening tag, Tags in HTML
Wrap values of attribute with "" for readability and normalization

<tag attribute="value">
<html lang="en">

If attribute's value doesn't have spaces, the "" can be omitted
But for readability and normalization, better to enclose values with ""

<a href=https://www.mozilla.org/> favorite website </a>

References